From 7bfe78deca845650e8a60b8098c987230dcd13e5 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Sun, 19 May 2002 23:14:07 +0000 Subject: [PATCH] * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR and XCDR real rvalues in most configurations. --- src/lisp.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/lisp.h b/src/lisp.h index b4997f484fc..3f9cee4474d 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -629,11 +629,6 @@ struct Lisp_Cons #define XCDR_AS_LVALUE(c) (XCONS ((c))->cdr) #endif -/* Okay, we're not quite ready to turn this on yet. A few files still - need to be updated and tested. */ -#undef LISP_MAKE_RVALUE -#define LISP_MAKE_RVALUE(x) (x) - /* Use these from normal code. */ #define XCAR(c) LISP_MAKE_RVALUE(XCAR_AS_LVALUE(c)) #define XCDR(c) LISP_MAKE_RVALUE(XCDR_AS_LVALUE(c)) -- 2.30.2